home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 28
/
Aminet 28 (1998)(GTI - Schatztruhe)[!][Dec 1998].iso
/
Aminet
/
text
/
edit
/
bah.lha
/
BAH3.3.1
/
Rexx
/
E
/
ECompileCache.bed
< prev
next >
Wrap
Text File
|
1998-10-16
|
412b
|
27 lines
/*
** $VER: ECompile.bed 1.0 (4.1.96) by M&F
**
** Run the ECDEMO command on the current BED window
*/
OPTIONS RESULTS
SetDisplayLock ON
SetInputLock ON
GetFilePath PATH
path = RESULT
GetFilePath FILE
name = RESULT
IF name = "" THEN
DO
SetStatusBar "No file name -- aborting"
exit 0
END
ADDRESS COMMAND 'CD "' || path || '"' || '0A'X || 'E:bin/EC "' || name || '"'
SetDisplayLock OFF
SetInputLock OFF